Early Preview

This is currently very much a preview. Please feel free to try things out, but don't be upset if anything is not yet working. Feedback is welcome over on our GitHub Dicussions page.

class System.​Collections.​Generic.​LinkedListNode<​T>

Assembly: System.Collections

Inheritance: object → LinkedListNode

Represents a node in a <see cref="T:System.Collections.Generic.LinkedList`1" /> . This class cannot be inherited.

Properties

public LinkedList<​T>
List
Gets the <see cref="T:System.Collections.Generic.LinkedList`1" /> that the <see cref="T:System.Collections.Generic.LinkedListNode`1" /> belongs to.
public LinkedListNode<​T>
Next
Gets the next node in the <see cref="T:System.Collections.Generic.LinkedList`1" /> .
public LinkedListNode<​T>
Previous
Gets the previous node in the <see cref="T:System.Collections.Generic.LinkedList`1" /> .
public T
Value
Gets the value contained in the node.
public T&
ValueRef
Gets a reference to the value held by the node.

Methods

public bool
Equals​(object obj)
Inherited from object
protected void
Finalize​()
Inherited from object
public int
GetHashCode​()
Inherited from object
public Type
GetType​()
Inherited from object
protected object
MemberwiseClone​()
Inherited from object
public string
ToString​()
Inherited from object